char* t = NULL;
int encoded = 0;
encstr = xml_attribute(logpart, "encoded");
- encoded = (encstr[0] != 'F');
+ encoded = (toupper(encstr[0]) != 'F');
if (html_encrypt && encoded) {
s = rot13(logpart->cdata);
char* t = NULL;
int encoded = 0;
encstr = xml_attribute(logpart, "encoded");
- encoded = (encstr[0] != 'F');
+ encoded = (toupper(encstr[0]) != 'F');
if (html_encrypt && encoded) {
s = rot13(logpart->cdata);
char *s = NULL;
int encoded = 0;
encstr = xml_attribute(logpart, "encoded");
- encoded = (encstr[0] != 'F');
+ encoded = (toupper(encstr[0]) != 'F');
if (palm_encrypt && encoded) {
s = rot13(logpart->cdata);
char *s = NULL;
int encoded = 0;
encstr = xml_attribute(logpart, "encoded");
- encoded = (encstr[0] != 'F');
+ encoded = (toupper(encstr[0]) != 'F');
if (txt_encrypt && encoded) {
s = rot13(logpart->cdata);